home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Development Kits / MPW etc / Debuggers / Power Mac Debugger / Debugger Extensions / Sample_ndcd / Echo.makefile < prev    next >
Encoding:
Makefile  |  1997-01-30  |  606 b   |  23 lines  |  [TEXT/MPS ]

  1. #
  2. #   Echo.makefile
  3. #
  4. #    MPW makefile for Echo NDCD
  5. #
  6. #    Copyright © 1993, Apple Computer, Inc.  All rights reserved.
  7. #
  8.  
  9. TARGETNAME = Echo
  10. CMNDIR = '::'
  11. OBJECTS = Echo.o {CMNDIR}ndcdGlue.o {CMNDIR}NativeNub
  12. COMPILE = MrC
  13.  
  14. {TARGETNAME} ƒƒ Echo.makefile {OBJECTS}
  15.     PPCLink -w -main ndcdExport {OBJECTS}        ∂
  16.     "{SharedLibraries}StdCLib"                    ∂
  17.     -o {TARGETNAME}                                                    # link 'em together
  18.     rez EchoAdd.r -a -o {TARGETNAME}                                # rez it as an 'ndcd' resource
  19.     setfile -t 'rsrc' -c 'RSED' {TARGETNAME}                        # set the file type & creator
  20.  
  21. Echo.o ƒ Echo.makefile Echo.c
  22.     {COMPILE}  -i {CMNDIR} Echo.c -o Echo.o
  23.